home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / uniq.zip / MAKEFILE.DOS < prev    next >
Text File  |  1994-05-23  |  112b  |  8 lines

  1. # MAKEFILE for Borland C++
  2.  
  3. CC       = bcc
  4. CFLAGS   = -Z -O -d
  5.  
  6. uniq.exe: uniq.c
  7.     $(CC) $(CFLAGS) uniq.c
  8.